home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #5 / Amiga Plus CD - 1996 - No. 5.iso / pd / tools / hbootv2_public / install_hboot < prev    next >
Text File  |  1996-05-14  |  2KB  |  102 lines

  1.  
  2. ; This is the script for installing HandyBoot 
  3. ; $VER: HBoot-Install 2.01 (29.5.96)
  4.  
  5. (complete 0)
  6.  
  7. (message "Handy Boot v2.01 Installation  \n"
  8.    "\n"
  9.    "This version of HBoot is FREEWARE !\n\n"
  10.    "<< Keep The Amiga Spirit Alive >>\n\n"
  11.    " Greatings from : \n"
  12.    "\n"
  13.    "     Michael D.P. de Clerck\n"
  14.    "     Increased Development.\n"
  15.    "     May 1996    Rotterdam \n"
  16.    "\n"
  17.    "<< SPREAD THIS TOOL WHEREEVER U GO >>\n"
  18. )
  19.  
  20. (set @default-dest "S:")
  21.  
  22.  
  23. (set installdir    
  24.    (askdir
  25.      (prompt "Please select the Directory where you would like\n "
  26.              "to install HBoot 2.01 and it's files.\n"
  27.              "I will create an directory called HBoot !\n "
  28.      )
  29.      (help @askdir-help)
  30.      (default @default-dest)
  31.    )
  32. )
  33.  
  34.  
  35. (set destdir (tackon installdir "HBoot"))
  36.  
  37. (makedir destdir)
  38.  
  39. (set @default-dest installdir)
  40.  
  41. (set userdir (tackon destdir "Users"))
  42.  
  43. (makedir userdir)
  44.  
  45.  
  46.  
  47. (complete 20)
  48.  
  49. (
  50.    (working "Installing HBoot 2.01 Program")
  51.    (copyfiles
  52.      (prompt "Select ")
  53.      (source "")
  54.      (help @copyfiles-help)
  55.      (dest destdir)
  56.      (infos)
  57.      (choices "HBoot" "Bootmail" "HBStartup")
  58.      (confirm)
  59.    )
  60. )
  61.  
  62. (complete 60)
  63.  
  64. (copyfiles
  65.    (prompt "Would you like to install the AmigaGuide documentation?")
  66.    (help @copyfiles-help)
  67.    (source "HBoot.Guide")
  68.    (dest destdir)
  69.    (infos)
  70.    (confirm)
  71. )
  72.  
  73. (complete 80)
  74.  
  75. (
  76.   (working "Copying the example User scripts")
  77.   (copyfiles
  78.     (prompt "")
  79.     (help @copyfiles-help)
  80.     (source "Users")
  81.     (dest userdir)
  82.     (all)
  83.   )
  84. )
  85.  
  86. (complete 100)
  87.  
  88. (message "Handy Boot v2.01 Installation complete\n"
  89.    "\n"
  90.    "Now add a HBoot: assign in your startup-sequence\n"
  91.    "and add the HBoot:HBoot command behind it.\n\n"
  92.     
  93.    "HBoot is usable after the next reboot.\n\n"
  94.  
  95.    "See the documentation for further support !\n"
  96.    "\n"
  97. )
  98.  
  99.  
  100.  
  101. (exit)
  102.